home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 2 / CU Amiga Magazine's Super CD-ROM 02 (1996)(EMAP Images)(GB)[!][issue 1996-04].iso / magazine / amiga_e / ged-e / ged_guideref2front.rexx < prev    next >
OS/2 REXX Batch file  |  1994-11-03  |  711b  |  21 lines

  1. /* $VER: 0.9, ©1994 BURGHARD Eric.                  */
  2. /*            Autodocs Help Window to front         */
  3.  
  4. options results                             /* enable return codes     */
  5.                                             /* not started by GoldEd ? */
  6. if (LEFT(ADDRESS(), 6) ~= "GOLDED") then address 'GOLDED.1'
  7. 'LOCK CURRENT QUIET'                        /* lock GUI, gain access   */
  8. if rc then exit
  9. options failat 6                            /* ignore warnings         */
  10. signal on syntax                            /* ensure clean exit       */
  11.  
  12. if show('P','AUTODOCS') then ADDRESS AUTODOCS 'windowtofront'
  13. 'UNLOCK'
  14. exit
  15.  
  16. syntax:
  17. say "Sorry, error line" SIGL ":" ERRORTEXT(RC) ":-("
  18. 'UNLOCK'
  19. exit
  20.  
  21.